for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict'
import { passwords } from '../../controllers'
export default function (server) {
server.post({
name: 'password//recoveryToken',
path: '/recoveryToken'
},
passwords.recoveryToken)
}